From 3ede87e4f15c4f02b5f4e606aeba15f9b8c1a0d7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 6 Sep 2002 16:45:54 +0000 Subject: [PATCH] (set_case_table): Make canon table point to eqv table. --- src/casetab.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/casetab.c b/src/casetab.c index de504e2e335..6056af54682 100644 --- a/src/casetab.c +++ b/src/casetab.c @@ -158,6 +158,9 @@ set_case_table (table, standard) XCHAR_TABLE (table)->extras[2] = eqv; } + /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ + XCHAR_TABLE (canon)->extras[2] = eqv; + if (standard) Vascii_downcase_table = table; else -- 2.30.2